.bloqueaff {
  margin: var(--hsp-xl) auto;
  padding: var(--hsp-s);
  border: 1px solid var(--hcl-brand-6);
  border-radius: var(--hrd-m);
  background-color: var(--hcl-neutral-2);
  max-width: 490px;
}

.bloqueaff-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bloqueaff-titulo {
  width: 100%;
  margin-bottom: var(--hsp-s);
  font-size: var(--hfs-h4);
}

.bloqueaff-titulo h2 {
  font-size: var(--hfs-h5);
  font-weight: bold;
  color: var(--bde-headings-color);
  margin: 0;
  text-align: center;
}

.bloqueaff-contenedor {
  display: flex;
  flex-direction: row;
  gap: var(--hsp-xs);
  padding-top: 20px;
  border-top: 1px solid var(--hcl-brand-6);
}

.bloqueaff-imagen {
  width: 35%;
}

.bloqueaff-imagen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 40px;
}

.bloqueaff-contenido {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bloqueaff-texto {
  margin-bottom: var(--hsp-m);
}

a.bloqueaff-boton {
  background-color: #ed5e21;
  text-decoration: none;
  border-radius: var(--hrd-l);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  color: #ffffff;
  padding: 8px 20px;
  align-self: flex-end;
}

.bloqueaff-boton:hover {
  background-color: #ed4a04;
  color: #ffffff !important;
}

/* Responsive design para pantallas pequeñas */
@media (max-width: 768px) {
  .bloqueaff-contenedor {
    flex-direction: column;
  }
  a.bloqueaff-boton {
    align-self: center;
  }
  .bloqueaff-imagen,
  .bloqueaff-contenido {
    width: 100%;
  }
  .bloqueaff-imagen img {
    max-height: 30px;
  }
}
